Early Preview
This is currently very much a preview. Please feel free to try things out,
but don't be upset if anything is not yet working. Feedback is welcome over on our
GitHub Dicussions page.
interface System.​IObserver<​T>
Assembly: System.Runtime
Provides a mechanism for receiving push-based notifications.
Methods
void
OnCompleted​()
Notifies the observer that the provider has finished sending push-based notifications.
void
OnError​(Exception error)
Notifies the observer that the provider has experienced an error condition.
error
An object that provides additional information about the error.
void
OnNext​(T value)
Provides the observer with new data.
value
The current notification information.